home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
close.c
< prev
next >
Wrap
Text File
|
1993-02-09
|
272b
|
23 lines
/*
close.C
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
*/
#define INCL_CLOSE
int _close (int handle)
{
asm mov ah, 3eh
asm mov bx, handle
asm int 21h
asm mov ax, 0
asm jnc _close1
asm mov ax, -1
_close1:
}